:root {
    --brown-dark: #2C1A0E;
    --brown-mid: #6B3A1F;
    --brown-warm: #A0522D;
    --brown-light: #C8885A;
    --gold: #D4A250;
    --cream: #FFF8F0;
    --cream-light: #c5c1bc;
    --cream-dark: #F0E0CC;
    --cream-border: #E8C9A8;
    --text-dark: #1C0F06;
    --text-mid: #5A3020;
    --zinc: #18181b;
    --brown-deep: #160D07;
    --dark-brown: #1a1510;
    --dark-light: #2d2519;
    --dark-medium: #3d3225;
    --text-light: #8a7d6c;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(26, 21, 16, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 21, 16, 0.12);
    --shadow-strong: 0 16px 60px rgba(26, 21, 16, 0.18);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0 ;

    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--brown-dark);
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

::selection {
    background: var(--gold);
    color: var(--brown-dark);
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    background: var(--brown-mid);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 0 !important ;
    padding-left: 0 !important ;
}


h1,
.hero-title,
.sejarah-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem !important;
}

h2,
.section-title,
.kuliner-main-title,
.story-card h2 {
    font-size: 1.875rem !important;
    font-weight: 600;
    line-height: 1.3;
}

h3,
.events-title,
.menu-item-name,
.node-content h3 {
    font-size: 25px !important;
    font-weight: 60;
}

h4,
.event-item h4,
.timeline-content h4 {
    font-size: 1.125rem !important;
    font-weight: 600;
}

h5,
h6 {
    font-size: 1rem !important;
    font-weight: 600;
}

p,
.hero-desc,
.dest-card-desc,
.art-card-desc,
.timeline-content p,
.node-content p {
    font-size: 19px !important;
}

a,
.nav-links a,
.mobile-link,
.mobile-sublink {
    font-size: 1rem !important;
    text-decoration: none;
    display: inline-block;
}

.section-intro-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-main-title {
    color: var(--brown-light);
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}

.scroll-text {
    font-family: 'Josefin Sans', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    color: var(--gold);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.section-main-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown-warm);
}

.section-title-line {
    width: 60px;
    height: 2px;
    margin: 1rem auto 0 auto;
    background-color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-intro-box p {
    color: var(--cream-border);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2rem;
}

blockquote,
.highlight-box blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
}

/* --- Tag Penanda Kecil (Span, Small, Time, Label, i) --- */
span,
small,
time,
i,
.hero-label,
.event-date,
.menu-item-origin,
.timeline-year,
.node-year,
.art-card-tag,
.place-type,
.sejarah-label {
    font-size: 1rem !important;
    /* Di HP: ~12px | Di Laptop: ~13.6px | Di PC: ~14.5px */
}

/* Khusus icon agar ukurannya tetap proporsional mengikuti teks di dekatnya */
i[data-lucide] {
    width: 1.15rem;
    height: 1.15rem;
}

body.visible {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(28, 15, 6, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--brown-mid), var(--gold));
    border-radius: 20px;
    border: 2px solid var(--brown-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

img {
    pointer-events: none;
}

section {
    padding: 8rem 10%;
}

.divider {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2.5rem;
}

.section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brown-warm);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--brown-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title em {
    color: var(--brown-warm);
    font-style: italic;
}